home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Belgian Amiga Club - ADF Collection
/
BS1 part 05.zip
/
BS1 part 5
/
SASC_6.0_Disk_7.adf
/
Source_And_Examples
/
examples
/
swap.c
< prev
Wrap
Text File
|
1992-07-30
|
81b
|
8 lines
void swap(int *x, int *y)
{
int tmp;
tmp = *x;
*x = *y;
*y = tmp;
}